Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
c4ccc614
Commit
c4ccc614
authored
Oct 09, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic cleanups of Beos port
parent
5c163daa
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
252 additions
and
241 deletions
+252
-241
configure
configure
+237
-218
configure.in
configure.in
+1
-1
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+4
-2
src/backend/port/beos/Makefile
src/backend/port/beos/Makefile
+5
-14
src/backend/port/beos/sem.c
src/backend/port/beos/sem.c
+3
-3
src/backend/port/beos/shm.c
src/backend/port/beos/shm.c
+2
-2
src/makefiles/Makefile.beos
src/makefiles/Makefile.beos
+0
-1
No files found.
configure
View file @
c4ccc614
This diff is collapsed.
Click to expand it.
configure.in
View file @
c4ccc614
...
...
@@ -634,7 +634,7 @@ AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_SEARCH_LIBS(crypt, crypt)
AC_CHECK_LIB(z, inflate)
AC_
CHECK_LIB(bind, main
)
AC_
SEARCH_LIBS(inet_ntoa, bind
)
if test "$with_krb4" = yes ; then
AC_CHECK_LIB(des, [des_encrypt], [], [AC_MSG_ERROR([library \`des' is required for Kerberos 4])])
...
...
src/backend/port/Makefile.in
View file @
c4ccc614
...
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.2
5 2000/10/07 14:39:10 momjian
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.2
6 2000/10/09 16:42:53 petere
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -40,7 +40,9 @@ qnx4/SUBSYS.o: qnx4.dir
qnx4.dir
:
$(MAKE)
-C
qnx4 all
beos/SUBSYS.o
:
beos/SUBSYS.o
:
beos.dir
beos.dir
:
$(MAKE)
-C
beos all
tas.o
:
tas.s
...
...
src/backend/port/beos/Makefile
View file @
c4ccc614
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/beos
#
#-------------------------------------------------------------------------
# $Header: /cvsroot/pgsql/src/backend/port/beos/Attic/Makefile,v 1.2 2000/10/09 16:42:54 petere Exp $
subdir
=
src/backend/port/beos
top_builddir
=
../../../..
include
../../../Makefile.global
INCLUDE_OPT
=
CFLAGS
+=
$(INCLUDE_OPT)
include
$(top_builddir)/src/Makefile.global
OBJS
=
sem.o shm.o support.o
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
depend dep
:
$(CC)
-MM
$(
INCLUDE_OPT
)
*
.c
>
depend
$(CC)
-MM
$(
CFLAGS)
$(CPPFLAGS
)
*
.c
>
depend
clean
:
rm
-f
SUBSYS.o
$(OBJS)
...
...
@@ -28,4 +20,3 @@ clean:
ifeq
(depend,$(wildcard depend))
include
depend
endif
src/backend/port/beos/sem.c
View file @
c4ccc614
...
...
@@ -10,9 +10,9 @@
#include "postgres.h"
#include
"stdio.h"
#include
"errno.h"
#include
"OS.h"
#include
<stdio.h>
#include
<errno.h>
#include
<OS.h>
// Controle d'un pool de sémaphores
// On considere que le semId utilisé correspond bien a une area de notre adress space
...
...
src/backend/port/beos/shm.c
View file @
c4ccc614
...
...
@@ -9,8 +9,8 @@
*/
#include "postgres.h"
#include
"stdio.h"
#include
"OS.h"
#include
<stdio.h>
#include
<OS.h>
// Detachement d'une zone de mémoire partagée
// On detruit le clone de l'area dans notre adress-space
...
...
src/makefiles/Makefile.beos
View file @
c4ccc614
MK_NO_LORDER
=
true
ifdef
ELF_SYSTEM
export_dynamic
=
-Wl
,-E
CPPFLAGS
+=
-I
$(top_srcdir)
/src/backend/port/beos
endif
%.so
:
%.o
ln
-fs
$(top_srcdir)
/src/backend/postgres _APP_
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment