mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 01:37:02 +02:00
0.1.14 fixes
This commit is contained in:
36
util/Makefile.in
Normal file
36
util/Makefile.in
Normal file
@ -0,0 +1,36 @@
|
||||
SHELL = @SHELL@
|
||||
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
includedir = @includedir@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
mandir = @mandir@
|
||||
datarootdir = @datarootdir@
|
||||
localstatedir = @localstatedir@
|
||||
|
||||
CC = @CC@
|
||||
CFLAGS = @CFLAGS@ @CPPFLAGS@
|
||||
DEFS = @defs@
|
||||
INCDIR = -I. -I../.. -I../../src @INCDIR@ @mysql_includes@
|
||||
LIBDIR = -L. @LIBDIR@ @LDFLAGS@ -L../../src
|
||||
LIBS = @LIBS@ @mysql_libs@
|
||||
RUNNING_USER = @RUNNING_USER@
|
||||
RUNNING_GROUP = `@id_bin@ -gn $(RUNNING_USER)`
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
|
||||
all:
|
||||
|
||||
install:
|
||||
$(INSTALL) -m 0755 $(srcdir)/ldap_sync.php $(DESTDIR)$(libexecdir)/piler
|
||||
|
||||
clean:
|
||||
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile
|
13
util/gen-iv.pl
Executable file
13
util/gen-iv.pl
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
|
||||
@x = ('A'..'Z','a'..'z',0..9);
|
||||
$iv = "";
|
||||
|
||||
srand;
|
||||
|
||||
for($i=0; $i<16; $i++){
|
||||
$iv .= @x[rand @x];
|
||||
}
|
||||
|
||||
print $iv;
|
Reference in New Issue
Block a user