Sthithaprajna Garapaty wrote:
> Hey,
> 
> I didnt add the autofoo stuff cause it gave me errors about missing
> makefiles in the po directory.
> I have no idea what that stuff is.. but if its for internationalization
> support, can you give me some makefile stuff to put in the po directory so
> that it compiles. Then I'll add it to cvs

Oops, I thought that had been included in the patch.. here you go

> Also, can you please attach your diffs from now on rather than pasting them
> inline.

I am attaching them. Not my fault your client is broken.

-- 
Morten
:wq
MAINTAINERCLEANFILES = Makefile.in $(PACKAGE).pot

MSGFMT = msgfmt

localedir = @LOCALEDIR@
locale_DATA = $(addsuffix .mo,$(ALL_LINGUAS))

EXTRA_DIST = $(PACKAGE).pot $(addsuffix .po,$(ALL_LINGUAS))

%.mo : %.po
        $(MSGFMT) -f -o $@ $<

install-localeDATA:
uninstall-localeDATA:
install-data-local:
        for L in $(ALL_LINGUAS); do \
          $(mkinstalldirs) $(DESTDIR)$(localedir)/$$L/LC_MESSAGES; \
          $(INSTALL_DATA) \
          $$L.mo $(DESTDIR)$(localedir)/$$L/LC_MESSAGES/$(PACKAGE).mo; \
        done

uninstall:
        for L in $(ALL_LINGUAS); do \
          rm -f  $(DESTDIR)$(localedir)/$$L/LC_MESSAGES/$(PACKAGE).mo; \
        done

clean-local:
        rm -f *.mo
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to