]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/Makefile.sol2
Use systemd's sd_notify with option up_sdnotify
[ppp.git] / pppd / Makefile.sol2
index 690b2f7b940f3ecae459a312d5f3d086cb4d1ea6..45b6b6269bd2a096a433bf284b7eac67b2d88cc7 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile for pppd under Solaris 2.
-# $Id: Makefile.sol2,v 1.27 2005/08/28 06:49:12 paulus Exp $
+# $Id: Makefile.sol2,v 1.30 2008/01/30 14:26:52 carlsonj Exp $
 #
 
 include ../Makedefs.com
@@ -10,10 +10,13 @@ LIBS        = -lsocket -lnsl
 
 OBJS   =  main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o eap.o md5.o \
        tty.o ccp.o ecp.o auth.o options.o demand.o utils.o sys-solaris.o \
-       chap-md5.o
+       chap-md5.o session.o
+
+# Solaris uses shadow passwords
+CFLAGS += -DHAS_SHADOW
 
 #
-# uncomment the following to enable plugins
+# Comment the following out to disable plugins
 #
 CFLAGS += -DPLUGIN
 LIBS   += -ldl
@@ -29,17 +32,21 @@ LIBS        += -ldl
 #
 # Solaris 8 and on includes support for IPv6
 #
-#CFLAGS        += -DINET6
-#OBJS  += ipv6cp.o eui64.o
+CFLAGS += -DINET6
+OBJS   += ipv6cp.o eui64.o
 
 # Uncomment to enable MS-CHAP
-#CFLAGS += -DUSE_CRYPT -DCHAPMS -DHAVE_CRYPT_H
-#OBJS += chap_ms.o pppcrypt.o md4.o sha1.o
+CFLAGS += -DUSE_CRYPT -DCHAPMS -DMSLANMAN -DHAVE_CRYPT_H
+OBJS += chap_ms.o pppcrypt.o md4.o sha1.o
 
 # Uncomment for CBCP
 #CFLAGS += -DCBCP_SUPPORT
 #OBJS += cbcp.o
 
+# Uncomment for PAM
+#CFLAGS += -DUSE_PAM
+#LIBS += -lpam
+
 #
 # Make targets
 #