diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-01-21 17:52:47 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-01-21 17:52:47 +0800 |
commit | f813aff648c38dd148fc570a912c936484fb490a (patch) | |
tree | 5dc7ca42348f700d9d9fe3e4ef4a570b3828eef6 | |
parent | d06bb80742e3131fa33685acbf028436ae64a139 (diff) | |
download | freebsd-ports-gnome-f813aff648c38dd148fc570a912c936484fb490a.tar.gz freebsd-ports-gnome-f813aff648c38dd148fc570a912c936484fb490a.tar.zst freebsd-ports-gnome-f813aff648c38dd148fc570a912c936484fb490a.zip |
Fix compilation when WITHOUT_PILOT is defined.
Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
-rw-r--r-- | deskutils/gnome-pim/Makefile | 4 | ||||
-rw-r--r-- | deskutils/gnomepim/Makefile | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/deskutils/gnome-pim/Makefile b/deskutils/gnome-pim/Makefile index ba95250058ff..d40e06f453cd 100644 --- a/deskutils/gnome-pim/Makefile +++ b/deskutils/gnome-pim/Makefile @@ -28,9 +28,7 @@ USE_LIBTOOL= yes CPPFLAGS= -I${LOCALBASE}/include LIBS= -L${LOCALBASE}/lib -.if defined(WITHOUT_PILOT) -CONFIGURE_ARGS= --without-pisock --disable-pilotlinktest -.else +.if !defined(WITHOUT_PILOT) CONFIGURE_ARGS= --with-pisock=${LOCALBASE} CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib diff --git a/deskutils/gnomepim/Makefile b/deskutils/gnomepim/Makefile index ba95250058ff..d40e06f453cd 100644 --- a/deskutils/gnomepim/Makefile +++ b/deskutils/gnomepim/Makefile @@ -28,9 +28,7 @@ USE_LIBTOOL= yes CPPFLAGS= -I${LOCALBASE}/include LIBS= -L${LOCALBASE}/lib -.if defined(WITHOUT_PILOT) -CONFIGURE_ARGS= --without-pisock --disable-pilotlinktest -.else +.if !defined(WITHOUT_PILOT) CONFIGURE_ARGS= --with-pisock=${LOCALBASE} CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib |