* examples/terminal/trm_srv.prg
* examples/terminal/readme.txt
! Fixed to use localhost instead of IPV4 specific 127.0.0.1
; Patches from Tamas: (Thanks a lot!)
+ debian/postinst
+ debian/postrm
+ make deb package run ldconfig when needed
* contrib/hbfbird/tests/simple.prg
* contrib/hbfbird/tests/test.prg
* contrib/hbfbird/tests/stress.prg
* Formatting, fixes, cleanup.
; TOFIX: OOP layer in hbfbird.
* contrib/sddpg/sddpg.c
* contrib/hbpgsql/postgres.c
! Fixed postgres header situation.
+ contrib/hbgd/tests/test.prg
* contrib/hbgd/gdwrp.c
+ Resolved TODO.
+ Added new test.
23 lines
262 B
Bash
23 lines
262 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure|remove)
|
|
/sbin/ldconfig
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|