]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/gnutls_rpath.pl
Added MAXPARA=32 to 005 (no other ircd has this, or allows a larger MAXPARA but its...
[user/henk/code/inspircd.git] / src / gnutls_rpath.pl
1 #!/usr/bin/perl
2 $data = `libgnutls-config --libs`;
3 $data =~ /-L(\S+)\s/;
4 $libpath = $1;
5 print "-Wl,--rpath -Wl,$libpath";
6