]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
* libpam-openafs-kaserver: Fix compilation so that the PAM module isn't debian/1.3.82-1
authorRuss Allbery <rra@debian.org>
Fri, 13 May 2005 01:16:04 +0000 (01:16 +0000)
committerRuss Allbery <rra@debian.org>
Fri, 13 May 2005 01:16:04 +0000 (01:16 +0000)
    missing symbols and therefore unusable.  (Closes: #308844)

debian/changelog
src/kauth/Makefile.in
src/rx/Makefile.in
src/ubik/Makefile.in

index 774e59f2e336b6eea59e4959e597861d284c145c..fd3ba909671f49ca35a55645167abd454966702a 100644 (file)
@@ -7,6 +7,8 @@ openafs (1.3.82-1) unstable; urgency=medium
   * Repackage upstream to remove MacOS-specific files covered by the APSL.
     Remove the WINNT directory to save space since we have to repackage
     anyway.  Provide a get-orig-source target to do the repackaging.
+  * libpam-openafs-kaserver: Fix compilation so that the PAM module isn't
+    missing symbols and therefore unusable.  (Closes: #308844)
   * Apply patch from Chas Williams to fix stale cache data from deleted
     files, a bug introduced in 1.3.82.
   * In all cases, only build the module appropriate to the kernel we're
index d9f5fe6d2e809bce2d2235a9987c1922a0f6c869..5ae75da0b387ebadcf8d8176b23cf8a6098e74ce 100644 (file)
@@ -51,6 +51,13 @@ KLIBS=${TOP_LIBDIR}/libubik.a \
 OBJS=kauth.xdr.o kauth.cs.o kaaux.o client.o authclient.o token.o kautils.o kalocalcell.o kaerrors.o user.o krb_tf.o 
 KOBJS=kauth.xdr.o kauth.cs.o kaaux.o client.o authclient.o token.o kautils.o kalocalcell.o kaerrors.o user.krb.o krb_tf.o
 
+PICTARGET =../pic/kauth
+PICOBJS = $(patsubst %.o,$(PICTARGET)/%.o,$(OBJS))
+$(PICTARGET)/%.o: %.c $(PICTARGET)
+       $(CC) -c $(PAM_CFLAGS) $(CFLAGS) $< -o $@
+
+$(PICTARGET):
+       mkdir -p $(PICTARGET)
 
 all: kaserver kas kpwvalid klog klog.krb knfs kpasswd rebuild kdb \
        ${TOP_LIBDIR}/libkauth.a \
@@ -63,14 +70,6 @@ depinstall: \
        ${TOP_INCDIR}/afs/kauth.h \
        ${TOP_INCDIR}/afs/kaport.h 
 
-PICTARGET =../pic/kauth
-PICOBJS = $(patsubst %.o,$(PICTARGET)/%.o,$(OBJS))
-$(PICTARGET)/%.o: %.c $(PICTARGET)
-       $(CC) -c $(PAM_CFLAGS) $(CFLAGS) $< -o $@
-
-$(PICTARGET):
-       mkdir -p $(PICTARGET)
-
 test tests: all
        cd test; $(MAKE)
 
index 3b6620f7a257723c4663691a9650b9538dd162ad..b4961f77585d9e8753d939e981da4292807272e3 100644 (file)
@@ -41,15 +41,15 @@ BASICINCLS=${TOP_INCDIR}/lwp.h ${TOP_INCDIR}/lock.h \
 LIBS=librx.a ${TOP_LIBDIR}/liblwp.a ${TOP_LIBDIR}/libcmd.a \
               ${TOP_LIBDIR}/util.a
 
-all: \
-       includes \
-       ${TOP_LIBDIR}/librx.a $(PICOBJS)
-
 PICTARGET =../pic/rx
 PICOBJS = $(patsubst %.o,$(PICTARGET)/%.o,$(LIBOBJS))
 $(PICTARGET)/%.o: %.c $(PICTARGET)
        $(CC) -c $(PAM_CFLAGS) $(CFLAGS) $< -o $@
 
+all: \
+       includes \
+       ${TOP_LIBDIR}/librx.a $(PICOBJS)
+
 depinstall: includes
 
 $(PICTARGET):
index bc056d4d05ff544c440761ad4b2ff08ec5594f57..9a14d38c58d664f2fe40ef7c851b0ccf6f9738db 100644 (file)
@@ -20,8 +20,6 @@ LIBS=${TOP_LIBDIR}/librx.a ${TOP_LIBDIR}/liblwp.a \
      ${TOP_LIBDIR}/libcom_err.a ${TOP_LIBDIR}/libcmd.a \
      ${TOP_LIBDIR}/util.a ${TOP_LIBDIR}/libsys.a ${XLIBS}
 
-all: depinstall ${TOP_LIBDIR}/libubik.a udebug utst_server utst_client $(PICOBJS)
-
 PICTARGET =../pic/ubik
 PICOBJS = $(patsubst %.o,$(PICTARGET)/%.o,$(LIBOBJS))
 $(PICTARGET)/%.o: %.c $(PICTARGET)
@@ -156,6 +154,7 @@ clean:
 
 include ../config/Makefile.version
 
+all: depinstall ${TOP_LIBDIR}/libubik.a udebug utst_server utst_client $(PICOBJS)
 
 ${DESTDIR}${libdir}/libubik.a: libubik.a
        ${INSTALL} $? $@