diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-13 19:07:38 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-13 19:07:38 +0000 |
commit | 538023278d853b2f310954e0b220be25ccea6330 (patch) | |
tree | 12b9ab819fdf7f30127c60156072acb62f177a48 /Makefile.in | |
parent | 0df439b3a15fac408f8273c22e4a94b7b70d166f (diff) | |
download | fetchmail-538023278d853b2f310954e0b220be25ccea6330.tar.gz fetchmail-538023278d853b2f310954e0b220be25ccea6330.tar.bz2 fetchmail-538023278d853b2f310954e0b220be25ccea6330.zip |
QNX port.
svn path=/trunk/; revision=96
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 1b21e6fc..b8643751 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,8 @@ # Makefile for popclient +# If you're running QNX, we can't assume a working autoconf. +# So just uncomment all the lines marked QNX. + # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ VPATH = @srcdir@ @@ -7,7 +10,9 @@ VPATH = @srcdir@ CC = @CC@ CFLAGS = @CFLAGS@ +# CFLAGS = -g2 -5 # QNX LDFLAGS = @LDFLAGS@ +# LDLAGS = -g2 -5 # QNX LEX = @LEX@ LEXFLAGS= YACC = @YACC@ @@ -19,9 +24,11 @@ RANLIB = @RANLIB@ # NeXT 1.0a uses an old version of GCC, which required -D__inline=inline. # See also `config.h'. defines = @DEFS@ +# defines = -DHAVE_CONFIG_H -DQNX -DHAVE_UNISTD_H -DSTDC_HEADERS # QNX # If your system needs extra libraries loaded in, define them here. LOADLIBS = @LIBS@ @LEXLIB@ +# LOADLIBS = -lsocket3r -lunix3r # QNX # Any extra object files your system needs. extras = @LIBOBJS@ |