Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c823b1ee
Commit
c823b1ee
authored
24 years ago
by
Michael Meskes
Browse files
Options
Downloads
Patches
Plain Diff
Added more patches by Cristif Petig.
parent
5781dbc0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/interfaces/ecpg/ChangeLog
+4
-0
4 additions, 0 deletions
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/Makefile
+69
-10
69 additions, 10 deletions
src/interfaces/ecpg/Makefile
with
73 additions
and
10 deletions
src/interfaces/ecpg/ChangeLog
+
4
−
0
View file @
c823b1ee
...
@@ -1009,5 +1009,9 @@ Fri Nov 3 11:34:43 CET 2000
...
@@ -1009,5 +1009,9 @@ Fri Nov 3 11:34:43 CET 2000
- Synced pgc.l with scan.l.
- Synced pgc.l with scan.l.
- Synced gram.y and preproc.y.
- Synced gram.y and preproc.y.
Sat Nov 4 17:42:43 CET 2000
- Added patch by Christof Petig to fix several small bugs.
- Set ecpg version to 2.8.0.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.
- Set library version to 3.2.0.
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/Makefile
+
69
−
10
View file @
c823b1ee
subdir
=
src/interfaces/ecpg
subdir
=
src/interfaces/ecpg
/preproc
top_builddir
=
../../..
top_builddir
=
../../..
/..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
all install installdirs uninstall dep depend distprep
:
MAJOR_VERSION
=
2
$(
MAKE
)
-C
include
$@
MINOR_VERSION
=
8
$(
MAKE
)
-C
lib
$@
PATCHLEVEL
=
0
$(
MAKE
)
-C
preproc
$@
clean distclean maintainer-clean
:
override
CPPFLAGS
+=
-I
$(
srcdir
)
/../include
-DMAJOR_VERSION
=
$(
MAJOR_VERSION
)
\
-$(
MAKE
)
-C
include
$@
-DMINOR_VERSION
=
$(
MINOR_VERSION
)
-DPATCHLEVEL
=
$(
PATCHLEVEL
)
\
-$(
MAKE
)
-C
lib
$@
-DINCLUDE_PATH
=
\"
$(
includedir
)
\"
-$(
MAKE
)
-C
preproc
$@
# -DYYDEBUG -g
OBJS
=
preproc.o pgc.o type.o ecpg.o ecpg_keywords.o output.o
\
keywords.o c_keywords.o ../lib/typename.o descriptor.o variable.o
all
:
ecpg
ifdef
SNPRINTF
OBJS
+=
$(
top_builddir
)
/src/backend/port/snprintf.o
$(top_builddir)/src/backend/port/snprintf.o
:
$(
MAKE
)
-C
$(
top_builddir
)
/src/backend/port snprintf.o
endif
ecpg
:
$(OBJS)
$(
CC
)
-o
$@
$^
$(
LDFLAGS
)
$(srcdir)/preproc.c $(srcdir)/preproc.h
:
preproc.y
$(
YACC
)
-d
$(
YFLAGS
)
$<
mv
y.tab.c
$(
srcdir
)
/preproc.c
mv
y.tab.h
$(
srcdir
)
/preproc.h
$(srcdir)/pgc.c
:
pgc.l
ifdef
FLEX
$(
FLEX
)
$(
FLEXFLAGS
)
-o
'$@'
$<
else
@$(
missing
)
flex
$<
$@
endif
distprep
:
$(srcdir)/preproc.c $(srcdir)/preproc.h $(srcdir)/pgc.c
install
:
all installdirs
$(
INSTALL_PROGRAM
)
ecpg
$(
X
)
$(
DESTDIR
)$(
bindir
)
installdirs
:
$(
mkinstalldirs
)
$(
DESTDIR
)$(
bindir
)
uninstall
:
rm
-f
$(
DESTDIR
)$(
bindir
)
/ecpg
$(
X
)
clean distclean
:
rm
-f
*
.o ecpg
$(
X
)
# garbage from partial builds
@rm
-f
y.tab.c
y.tab.h
# garbage from development
@rm
-f
core
a.out
*~
*.output
*.tab.c
# `make clean' does not remove preproc.c, preproc.h, or pgc.c since we
# want to ship those files in the distribution for people with
# inadequate tools.
maintainer-clean
:
distclean
rm
-f
$(
srcdir
)
/preproc.c
$(
srcdir
)
/preproc.h
$(
srcdir
)
/pgc.c
depend dep
:
preproc.c pgc.c
$(
CC
)
-MM
$(
CFLAGS
)
*
.c
>
depend
ifeq
(depend,$(wildcard depend))
include
depend
endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment