Skip to content

Commit

Permalink
pinentry: A tweak to the build regarding qt4.
Browse files Browse the repository at this point in the history
  • Loading branch information
stumbles committed Dec 27, 2014
1 parent b34aa64 commit fe88281
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion x11-utils/pinentry/BUILD
Expand Up @@ -2,9 +2,18 @@
OPTS+=" --enable-fallback-curses --enable-pinentry-curses" &&

if in_depends $MODULE qt4 ; then
. /etc/profile.d/qt4.rc
. /etc/profile.d/qt4.rc &&

local f &&
for f in qt4/*.moc; do
/usr/bin/moc ${f/.moc/.h}
done
fi &&

for file in qt4/*.moc; do
moc ${file/.moc/.h} > ${file}
done &&

sedit 's/gulong/gsize/g' gtk+-2/gtksecentry.c &&

default_build

0 comments on commit fe88281

Please sign in to comment.