1. 10 Jan, 1997 15 commits
  2. 09 Jan, 1997 1 commit
  3. 08 Jan, 1997 10 commits
  4. 07 Jan, 1997 1 commit
  5. 06 Jan, 1997 11 commits
  6. 05 Jan, 1997 2 commits
    • Marc G. Fournier's avatar
      final fix for shared library under BSD44_derived · 8251ce7d
      Marc G. Fournier authored
      Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
      8251ce7d
    • Marc G. Fournier's avatar
      Shared library fixes for BSD44_Derived port · 0865f587
      Marc G. Fournier authored
      Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
      
      NOTE: The following patch I was uncertain of, but applied it...will end up
      	testing the compile on my machine later tonight anyway, but if anyone
      	knows why this *shouldn't* have been done, please change it. (CC -> LD)
      
      ***************
      *** 61,68 ****
        ../backend/lib/dllist.o:
              $(MAKE) -C ../backend/lib dllist.o
      
      ! libpq.so.1: $(OBJS)
      !       $(CC) $(LDFLAGS) -shared $(OBJS) -o libpq.so.1
      
        c.h: ../include/c.h
              rm -f c.h
      --- 66,73 ----
        ../backend/lib/dllist.o:
              $(MAKE) -C ../backend/lib dllist.o
      
      ! $(shlib): $(OBJS)
      !       $(LD) $(LDFLAGS) -shared $(OBJS) -o $(shlib)
      
        c.h: ../include/c.h
              rm -f c.h
      0865f587